home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / STRCAT.C < prev    next >
Encoding:
Text File  |  1980-01-10  |  384 b   |  11 lines

  1. /*
  2. ** append s2 to the end of s1
  3. */
  4. strcat(s1, s2) char *s1, *s2; {
  5.   char *strcat;
  6.   strcat = s1;
  7.   while(*s1) s1++;
  8.   while(*s1++ = *s2++);
  9.   return strcat;
  10.   }
  11.